Gets whether the results of the state change will also be reported directly to the application due to a method call. For example, an exception encountered by calling Invite would be reported both where Invite was called, and in the state change. An application written to handle errors when it makes method calls should only need to handle results reported in the state change only (IsMethodResult==false).

Namespace:  Microsoft.Rtc.Signaling
Assembly:  Microsoft.Rtc.Collaboration(in Microsoft.Rtc.Collaboration.dll)

Syntax

Visual Basic (Declaration)
<
ObsoleteAttribute("This property is now
obsolete.")> _
Public 
ReadOnly 
Property 
IsMethodResult 
As 
Boolean
C#
[
ObsoleteAttribute("This property is now
obsolete.")]
public 
bool 
IsMethodResult { 
get; }
Visual C++
[
ObsoleteAttribute(L"This property is
now obsolete.")]
public:
property 
bool 
IsMethodResult {
	
bool 
get ();
}
JavaScript
function get_
isMethodResult();

Field Value

True if the same result will be reported as the result of the method call; false otherwise.

See Also